home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / creat.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  98 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.13;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.10.15.42.06;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * creat.c --
  32.  *
  33.  *    Procedure to map from Unix creat system call to Sprite.
  34.  *
  35.  * Copyright (C) 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: creat.c,v 1.2 87/10/14 15:49:39 brent Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45.  
  46. #include "compatInt.h"
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * creat --
  53.  *
  54.  *    Procedure to map from Unix creat system call to Sprite Fs_Open,
  55.  *    with appropriate parameters.
  56.  *
  57.  * Results:
  58.  *    UNIX_ERROR is returned upon error, with the actual error code
  59.  *    stored in errno.  A file descriptor is returned upon success.
  60.  *
  61.  * Side effects:
  62.  *    Creating a file sets up state in the filesystem until the file is
  63.  *    closed.  
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. int
  69. creat(pathName, permissions)
  70.     char *pathName;        /* The name of the file to create */
  71.     int permissions;        /* Permission mask to use on creation */
  72. {
  73.     int streamId;        /* place to hold stream id allocated by
  74.                  * Fs_Open */
  75.     ReturnStatus status;    /* result returned by Fs_Open */
  76.  
  77.     status = Fs_Open(pathName, FS_CREATE|FS_TRUNC|FS_WRITE, permissions,
  78.             &streamId);
  79.     if (status != SUCCESS) {
  80.     errno = Compat_MapCode(status);
  81.     return(UNIX_ERROR);
  82.     } else {
  83.     return(streamId);
  84.     }
  85. }
  86. @
  87.  
  88.  
  89. 1.1.1.1
  90. log
  91. @Initial branch for Sprite server.
  92. @
  93. text
  94. @d11 1
  95. a11 1
  96. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/creat.c,v 1.1 88/06/19 14:31:13 ouster Exp $ SPRITE (Berkeley)";
  97. @
  98.